home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Atari Mega Archive 2
/
Atari Mega Archive CD - Volume 2.iso
/
minix
/
up1510b.tgz
/
up1510b
/
src
/
lib
/
posix
/
chown.c
< prev
next >
Wrap
C/C++ Source or Header
|
1990-07-19
|
161b
|
9 lines
#include <lib.h>
PUBLIC int chown(name, owner, grp)
char *name;
int owner, grp;
{
return(callm1(FS, CHOWN, len(name), owner, grp, name, NIL_PTR, NIL_PTR));
}